home *** CD-ROM | disk | FTP | other *** search
/ PD Collection CD 1 / PD Collection CD 1.iso / textual / stronged / !StrongED_Modes_!Dump_Modefile < prev    next >
Encoding:
Text File  |  1996-08-20  |  888 b   |  60 lines

  1.  
  2. # "Dump" is a special kind of Mode. It doesn't have wraplines and textlines
  3. # like ordinary modes, but instead each line represents a fixed number of
  4. # bytes of the file.
  5.  
  6. ModeType Dump
  7.  
  8. KeyList
  9.  
  10.     TAB        Dump_CycleSection
  11.  
  12.     F1        Dump_Help
  13.  
  14.     Left        Dump_Left
  15.     ⇧Left        PassOn
  16.     ^Left        StartOfWLine
  17.     ^⇧Left        PassOn
  18.  
  19.     Right        Dump_Right
  20.     ⇧Right        PassOn
  21.     ^Right        EndOfWLine
  22.     ^⇧Right        PassOn
  23.  
  24.     Up        Dump_Up
  25.     ^Up        StartOftext
  26.     ^⇧Up        LineUp
  27.     Down        Dump_Down
  28.     ^Down        EndOfText
  29.     ^⇧Down        LineDown
  30.  
  31.     ESC        ChangeMode("BaseMode")
  32.  
  33. End
  34.  
  35. Functions
  36.  
  37.     Icon    left
  38.     Select    ChangeMode("BaseMode",0)
  39.  
  40.     Menu    Byte display
  41.     Icon    dm_byte
  42.     Select    ChangeMode("!Dump",0)
  43.  
  44.     Menu    Word display
  45.     icon    dm_word
  46.     Select    ChangeMode("!Dump",1)
  47.  
  48.     Menu    Ascii display
  49.     icon    dm_ascii
  50.     Select    ChangeMode("!Dump",2)
  51.  
  52.     Menu    Assembly display
  53.     icon    dm_asm
  54.     Select    ChangeMode("!Dump",3)
  55.  
  56.     Menu    Grab fresh copy
  57.     icon    new
  58.     Select    Dump_ReGrab
  59.  
  60. End